Visual Basic (Declaration) | |
---|---|
Public Overloads MustOverride Sub SendData( _ ByVal dataSamples As IEnumerable(Of Single()), _ ByVal channelIndexes As IEnumerable(Of Integer) _ ) |
C# | |
---|---|
public abstract void SendData( IEnumerable<float[]> dataSamples, IEnumerable<int> channelIndexes ) |
C++/CLI | |
---|---|
public: abstract void SendData( IEnumerable<array<float>>^ dataSamples, IEnumerable<int>^ channelIndexes ) |
Parameters
- dataSamples
- Time series data blocks (one block per specified channel, as element in array) to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.
- channelIndexes
- Channel indices corresponding to blocks of data in dataSamples array.
Send data for multiple channels into first-in-first-out (FIFO) buffers to be consumed by attached Measurement. Data can be sent for a single channel using UserInputDataChannel.SendData.
Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)